home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / Apps / Graphics / Viewers / Magnify / Magnify_main.m next >
Text File  |  1992-12-25  |  176b  |  10 lines

  1. #import "Magnify.h"
  2.  
  3. void main(int argc, char *argv[])
  4. {
  5.     NXApp = [Magnify new];
  6.     [NXApp loadNibSection:"Magnify.nib" owner:NXApp];
  7.     [[NXApp run] free];
  8.     exit(EXIT_SUCCESS);
  9. }
  10.